MPIVenue

@Serializable
data class MPIVenue(val name: String, val languages: List<MPILanguage>? = null, val defaultLanguage: MPILanguage, val extra: String? = null)

MPIVenue contains general information about a venue.

Constructors

Link copied to clipboard
constructor(name: String, languages: List<MPILanguage>? = null, defaultLanguage: MPILanguage, extra: String? = null)

Properties

Link copied to clipboard

The default language of the venue.

Link copied to clipboard
val extra: String? = null

Contains a JSON string with extra properties of the venue.

Link copied to clipboard
val languages: List<MPILanguage>? = null

A List of languages supported by the venue.

Link copied to clipboard

The name of this venue.